type go/types.byUniqueMethodName

6 uses

	go/types (current package)
		typeset.go#L367: 	sort.Sort(byUniqueMethodName(list))
		typeset.go#L374: 	if !sort.IsSorted(byUniqueMethodName(list)) {
		typeset.go#L380: type byUniqueMethodName []*Func
		typeset.go#L382: func (a byUniqueMethodName) Len() int           { return len(a) }
		typeset.go#L383: func (a byUniqueMethodName) Less(i, j int) bool { return a[i].Id() < a[j].Id() }
		typeset.go#L384: func (a byUniqueMethodName) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }